FloatIterator

abstract class FloatIterator : Iterator<Float>

An iterator over a sequence of values of type Float.

Constructors

FloatIterator
Link copied to clipboard
Common
fun FloatIterator()

Functions

hasNext
Link copied to clipboard
Common
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
Common
operator override fun next(): Float
nextFloat
Link copied to clipboard
Common
abstract fun nextFloat(): Float

Returns the next value in the sequence without boxing.